home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 April: Mac OS SDK / Dev.CD Apr 96 SDK / Dev.CD Apr 96 SDK1.toast / Development Kits (Disc 1) / OpenDoc / Sample Code / CALib & You… / Source / CASample / CAS_Event.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-12-07  |  1.0 KB  |  47 lines  |  [TEXT/MPS ]

  1. /*
  2.  
  3.     File:        CAS_Event.h
  4.  
  5.     Contains:    Constants and public function prototypes for CAS_Event.c
  6.  
  7.     Written by:    David H Nelson
  8.  
  9.     Copyright © 1993-1995 ComponentWorks, All rights reserved.
  10.  
  11.     Change History (most recent first):
  12.  
  13.          <1>     11/20/93    DHN        Created.
  14. */
  15.  
  16. #if !defined(_H_CAS_Event)
  17. #define _H_CAS_Event
  18.  
  19.  
  20. #if defined(__cplusplus)
  21. extern "C"
  22. {
  23. #endif
  24.  
  25. Boolean Event_DoubleClick(EventRecord *theEvent);
  26.  
  27. void    Event_DoIdle(void);
  28.  
  29. void    Event_HandleNullEvent(EventRecord *theEvent);
  30. void    Event_HandleMouseDownEvent(EventRecord *theEvent);
  31. void    Event_HandleMouseUpEvent(EventRecord *theEvent);
  32. void    Event_HandleKeyDownEvent(EventRecord *theEvent);
  33. void    Event_HandleAutoKeyEvent(EventRecord *theEvent);
  34. void    Event_HandleKeyUpEvent(EventRecord *theEvent);
  35. void    Event_HandleActivateEvent(EventRecord *theEvent);
  36. void    Event_HandleUpdateEvent(EventRecord *theEvent);
  37. void    Event_HandleHighLevelEvent(EventRecord *theEvent);
  38. void    Event_HandleOSEvent(EventRecord *theEvent);
  39. void    Event_HandleDiskEvent(EventRecord *theEvent);
  40.  
  41. #if defined(__cplusplus)
  42. }
  43. #endif
  44.  
  45.  
  46. #endif
  47.